home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Objrepos / CSharp / Global.asax.cs < prev    next >
Encoding:
INI File  |  2004-10-22  |  1.2 KB  |  72 lines

  1. [!outputon]
  2. using System;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.Web;
  6. using System.Web.SessionState;
  7.  
  8. namespace [!Namespace]
  9. {
  10.     /// <summary>
  11.     /// Summary description for Global.
  12.     /// </summary>
  13.     public class Global : System.Web.HttpApplication
  14.     {
  15.         public Global()
  16.         {
  17.             InitializeComponent();
  18.         }    
  19.         
  20.         protected void Application_Start(Object sender, EventArgs e)
  21.         {
  22.  
  23.         }
  24.  
  25.         protected void Session_Start(Object sender, EventArgs e)
  26.         {
  27.  
  28.         }
  29.  
  30.         protected void Application_BeginRequest(Object sender, EventArgs e)
  31.         {
  32.  
  33.         }
  34.  
  35.         protected void Application_EndRequest(Object sender, EventArgs e)
  36.         {
  37.  
  38.         }
  39.  
  40.         protected void Application_AuthenticateRequest(Object sender, EventArgs e)
  41.         {
  42.  
  43.         }
  44.  
  45.         protected void Application_Error(Object sender, EventArgs e)
  46.         {
  47.  
  48.         }
  49.  
  50.         protected void Session_End(Object sender, EventArgs e)
  51.         {
  52.  
  53.         }
  54.  
  55.         protected void Application_End(Object sender, EventArgs e)
  56.         {
  57.  
  58.         }
  59.             
  60.         #region Web Form Designer generated code
  61.         /// <summary>
  62.         /// Required method for Designer support - do not modify
  63.         /// the contents of this method with the code editor.
  64.         /// </summary>
  65.         private void InitializeComponent()
  66.         {    
  67.         }
  68.         #endregion
  69.     }
  70. }
  71.  
  72.